home *** CD-ROM | disk | FTP | other *** search
- "FILE"="Xteq Systems X-Setup Plugin 3.1"
- "TYPE"="5"
- "COUNT"="1"
- "UIPATH"="Internet\Netscape Navigator"
- "NAME"="Clear URLs"
- "LANGUAGE"="VBScript"
- "TEXT 1"="Clear typed URLs"
- "DESCRIPTION 1"="If you do not want that other people can see the URLs you have typed, click the first button."
- "DESCRIPTION 2"="This might not work with Communicator (Navigator 4.0) and above."
- "AUTHOR"="Xteq Systems"
- "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
- "COMMENT 1"="For more information, go to http://www.xteq.com or write to TeXHeX@gmx.net."
- "COMMENT 2"="Version 1.1"
-
-
- sP="HKCU\Software\Netscape\Netscape Navigator\URL History\"
- Sub Plugin_Initialize
- if RegPathExists(sP)=false then
- Disable
- End if
- End Sub
-
- Sub Plugin_CheckData(ElementIndex)
- End Sub
-
- Sub Plugin_Apply(ElementIndex,ElementSubIndex)
- i=RegEnumValues(sp)
- for l=1 to i
- Call RegDeleteValue(sp & RegEnumElement(l))
- Next
-
- Call MsgInformation("Cleared")
- End Sub
-
- Sub Plugin_Terminate
- End Sub
-